home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / userbox / publicdomain / vim-4.2 / src / osdef.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1996-05-29  |  2KB  |  84 lines

  1. #! /bin/sh
  2. #
  3. # osdef.sh -- copy osdef.h.in to osdef.h while removing declarations
  4. # found in the system header files. Caution: weird sed magic going on here.
  5. # Warnings are printed if sed did not survive.
  6. #
  7. # (C) Michael Schroeder, Juergen Weigert
  8. #
  9. # split osdef.h.in into osdef1.h.in and osdef2.h.in, because some sed's could
  10. # not handle the amount of commands.
  11. #
  12. # 31.10.95 jw.
  13.  
  14. if test -z "$CC"; then
  15.   CC=cc
  16. fi
  17. if test -z "$srcdir"; then
  18.   srcdir=.
  19. fi
  20.  
  21. rm -f core* *.core
  22.  
  23. cat << EOF > osdef0.c
  24. #define select select_declared_wrong
  25. #define tgetstr tgetstr_declared_wrong
  26. #include "config.h"
  27. #include "unix.h"    /* bring in most header files, more follow below */
  28. #include "unixunix.h"    /* bring in header files for unix.c */
  29.  
  30. #ifdef HAVE_TERMCAP_H
  31. # include <termcap.h>    /* only for term.c */
  32. #endif
  33.  
  34. #include <fcntl.h>        /* only used in a few files */
  35.  
  36. #ifdef HAVE_SYS_STATFS_H
  37. # include <sys/types.h>
  38. # include <sys/statfs.h>    /* only for memfile.c */
  39. #endif
  40. EOF
  41.  
  42. $CC -I. -I$srcdir -E osdef0.c >osdef0.ccc
  43.  
  44. sed < $srcdir/osdef1.h.in -n -e '/^extern/s@.*[)*     ][)*     ]*\([^ *]*\) __ARGS.*@/[)*,     ]\1[     (]/i\\\
  45. \\/\\[^a-zA-Z_\\]\1 __ARGS\\/d@p' > osdef11.sed
  46.  
  47. sed < $srcdir/osdef2.h.in -n -e '/^extern/s@.*[)*     ][)*     ]*\([^ *]*\) __ARGS.*@/[)*,     ]\1[     (]/i\\\
  48. \\/\\[^a-zA-Z_\\]\1 __ARGS\\/d@p' > osdef21.sed
  49.  
  50. cat << EOF > osdef2.sed
  51. 1i\\
  52. /*
  53. 1i\\
  54.  * osdef.h is automagically created from osdef?.h.in by osdef.sh -- DO NOT EDIT
  55. 1i\\
  56.  */
  57. EOF
  58.  
  59. cat osdef0.ccc | sed -n -f osdef11.sed >> osdef2.sed
  60. sed -f osdef2.sed < $srcdir/osdef1.h.in > osdef.h
  61.  
  62. cat osdef0.ccc | sed -n -f osdef21.sed > osdef2.sed
  63. sed -f osdef2.sed < $srcdir/osdef2.h.in >> osdef.h
  64.  
  65. rm osdef0.c osdef0.ccc osdef11.sed osdef21.sed osdef2.sed
  66.  
  67. if test -f core*; then
  68.   file core*
  69.   echo "  Sorry, your sed is broken. Call the system administrator."
  70.   echo "  Meanwhile, you may try to compile Vim with an empty osdef.h file."
  71.   echo "  If you compiler complains about missing prototypes, move the needed"
  72.   echo "  ones from osdef1.h.in and osdef2.h.in to osdef.h."
  73.   exit 1
  74. fi
  75. cat osdef1.h.in osdef2.h.in >osdefX.h.in
  76. if eval test "`diff osdef.h osdefX.h.in | wc -l`" -eq 4; then
  77.   echo "  Hmm, sed is very pessimistic about your system header files."
  78.   echo "  But it did not dump core -- strange! Let's continue carefully..."
  79.   echo "  If this fails, you may want to remove offending lines from osdef.h"
  80.   echo "  or try with an empty osdef.h file, if your compiler can do without"
  81.   echo "  function declarations."
  82. fi
  83. rm osdefX.h.in
  84.